ComponentOne Data Source for Entity Framework
C1.LiveLinq.Indexing Namespace / SubindexCollection<T> Class / Find Method / Find(LambdaExpression) Method
Key selector expression of an subindex, see KeySelector.

In This Topic
    Find(LambdaExpression) Method
    In This Topic
    Finds a subindex in the collection by its key selector.
    Syntax
    'Declaration
     
    
    Public Overloads Function Find( _
       ByVal keySelector As System.Linq.Expressions.LambdaExpression _
    ) As Subindex(Of T)
    public Subindex<T> Find( 
       System.Linq.Expressions.LambdaExpression keySelector
    )

    Parameters

    keySelector
    Key selector expression of an subindex, see KeySelector.

    Return Value

    A subindex with the given key selector, if it is found; otherwise, null.
    See Also